body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #333;
}


/* Header/Blog Title */
.header {
    padding: 30px;
    text-align: center;
    background: white;
    height: 300px;
    background-image: url(img/Tishey.JPG);
    background-size: cover;
    color: azure;
    transform: translate(0%, 10%);
    z-index: 0;
}
    
.header h1 {
    font-size: 50px;
}

nav {
    display: flex;
    justify-content: space-between;
    background-color: #772146;
    padding: 10px;
    text-align: center;
    transform: translate(0%, 10%);
}


nav a {
    color: white;
    padding: 10px;
    margin: 5px;
    display: inline-block;
}

/* Style for the normal link */
a {
    color: #772146; 
    text-decoration: none;
}
  
/* Style for the highlighted link */
a:hover {
    color: white; /* Change the color on hover */
    background-color: #333; /* Add a background color on hover */
    border-radius: 5px; /* Optional: Add rounded corners */
}
/* Footer */
.footer {
    padding: 30px;
    text-align: center;
    background: #772146;
    color: azure;
    margin-top: 20px;
}

@media (prefers-reduced-motion: reduce) {
    .fcf-btn {
        transition: none;
    }
  }
  
  .fcf-btn:hover {
    color: #212529;
    text-decoration: none;
  }
  
  .fcf-btn:focus, .fcf-btn.focus {
    outline: 0;
  }
    
/*Navigation for Mobile Device*/
@media only screen and (max-width: 600px) {
    .nav-links {
        display: none;
        flex-direction: column;
        text-align: center;
        width: 100%;
        position: absolute;
        background-color: #333;
        z-index: 1;
    }

    .nav-links a {
        display: block;
        padding: 15px;
    }

    .menu-icon {
        display: block;
    }
}